home *** CD-ROM | disk | FTP | other *** search
/ All for Cell Phones: Sony Ericsson / Sony-Ericsson 2004.iso / Java / ManInLine / Mil.jar / mil / MilHelp.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-11-30  |  1.5 KB  |  35 lines

  1. package mil;
  2.  
  3. import javax.microedition.lcdui.Displayable;
  4. import javax.microedition.lcdui.Form;
  5.  
  6. public class MilHelp extends Form {
  7.    private static MilImCache sImCache;
  8.  
  9.    public MilHelp(MilImCache var1) {
  10.       super(Mil.sL.ghHead());
  11.       sImCache = var1;
  12.       ((Form)this).append(Mil.sL.ghT());
  13.       ((Form)this).append(Mil.sL.ghA());
  14.       ((Form)this).append(sImCache.getMan(0));
  15.       ((Form)this).append(Mil.sL.ghY());
  16.       ((Form)this).append(sImCache.getDiamond(0));
  17.       ((Form)this).append(Mil.sL.ghDh());
  18.       ((Form)this).append(Mil.sL.ghDt());
  19.       ((Form)this).append(sImCache.getStone());
  20.       ((Form)this).append(Mil.sL.ghSh());
  21.       ((Form)this).append(Mil.sL.ghSt());
  22.       ((Form)this).append(sImCache.getBlock());
  23.       ((Form)this).append(Mil.sL.ghBh());
  24.       ((Form)this).append(Mil.sL.ghBt());
  25.       ((Form)this).append(sImCache.getMud());
  26.       ((Form)this).append(Mil.sL.ghMh());
  27.       ((Form)this).append(Mil.sL.ghMt());
  28.       ((Form)this).append(Mil.sL.ghGt());
  29.       ((Form)this).append(Mil.sL.ghGt2());
  30.       ((Form)this).append(Mil.sL.ghGt3());
  31.       ((Displayable)this).addCommand(Mil.sCmdOk);
  32.       ((Displayable)this).setCommandListener(Mil.sMil);
  33.    }
  34. }
  35.